home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_300 / 359_11 / patch5.000 / EMU387_E13.CC < prev    next >
C/C++ Source or Header  |  1991-09-11  |  253b  |  20 lines

  1. #include "emu.h"
  2. #include "rmov.h"
  3.  
  4. void emu_13()
  5. {
  6.   if (modrm > 0277)
  7.   {
  8.     emu_bad();
  9.   }
  10.   else
  11.   {
  12.     // fstp m32real
  13.     if (empty())
  14.       return;
  15.     r_mov(st(), (float *)get_modrm());
  16.     st().tag = TW_E;
  17.     top++;
  18.   }
  19. }
  20.